home *** CD-ROM | disk | FTP | other *** search
/ Mac Ga Ichiban! 1996 December / macgaichiban199612.bin / NEWS ROOM / contentm.dir / 00134.ls < prev    next >
Encoding:
Text File  |  1996-02-20  |  374 b   |  17 lines

  1. on startMovie
  2.   cursor(4)
  3. end
  4.  
  5. on soundfader chan
  6.   if soundBusy(chan) = 1 then
  7.     set sttime to the ticks + the volume of sound 1
  8.     repeat while the volume of sound chan > chan
  9.       set the volume of sound chan to sttime - the ticks
  10.       updateStage()
  11.     end repeat
  12.     sound stop chan
  13.     set the volume of sound chan to 255
  14.     set the soundLevel to 5
  15.   end if
  16. end
  17.